home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass3.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  344 b   |  32 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __SUBCLASS3_H
  11. #define __SUBCLASS3_H
  12.  
  13. #include  <SubClass2.h>
  14.  
  15. @interface SubClass3 : SubClass2 {
  16.  
  17.   char  smart[ 256 ];
  18. }
  19.  
  20. +initialize;
  21. + new;
  22. -print:( const char* )aMsg;
  23. - ( int )additionalMethod;
  24. - storeOn:( int )aFd;
  25. - readFrom:( int )aFd;
  26.  
  27. @end
  28.  
  29.  
  30. #endif
  31.  
  32.